home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 1 / LSD Compendium Deluxe 1.iso / a / programming / misc / m2_part1.lha / modula / src / Storage.def < prev    next >
Encoding:
Modula Definition  |  1994-07-30  |  235 b   |  10 lines

  1. DEFINITION MODULE Storage ;
  2.  
  3. FROM SYSTEM IMPORT ADDRESS ;
  4.  
  5. PROCEDURE ALLOCATE  ( VAR adr : ADDRESS ; size : LONGINT ) ;
  6. PROCEDURE DEALLOCATE( VAR adr : ADDRESS ; size : LONGINT ) ;
  7. (* Second (size) argument is ignored *)
  8.  
  9. END Storage.
  10.